home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000262_news@columbia.edu _Wed Jun 19 10:01:23 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA04381 for <kermit.misc@watsun>; Wed, 19 Jun 1996 10:01:22 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id KAA18952 for kermit.misc@watsun; Wed, 19 Jun 1996 10:01:20 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Greek in terminal emulation
  8. Date: 19 Jun 1996 14:00:42 GMT
  9. Organization: Columbia University
  10. Lines: 50
  11. Message-ID: <4q916a$if8@apakabar.cc.columbia.edu>
  12. References: <4q7nq3$ft7$2@mhadf.production.compuserve.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4q7nq3$ft7$2@mhadf.production.compuserve.com>,
  16. Kelvin Smith  <74654.3313@CompuServe.COM> wrote:
  17. : I've run into a problem with Kermit-MS v3.14, which I recently
  18. : installed as a terminal emulator (upgrading finally from v3.10).
  19. : I run two separate COM ports (COM2 and COM4) to a DEC PDP/11 
  20. : machine running RSTS.  The IRQ and address settings haven't been 
  21. : a problem; data back and forth transfers with only rare hiccups.
  22. : The problem is that sometimes (not always), when I start up
  23. : Kermit on COM4, the terminal emulator starts up using a Greek
  24. : character set (literally Greek: P is pi, A is alpha, etc.).
  25. : The startup routines for COM2 & COM4 (initiated with -F xxx;
  26. : port settings are in a small initial file, then common settings
  27. : are called from each initial file) are identical except for
  28. : the different port settings and the fact that COM2 runs at 9600
  29. : baud while COM4 runs at 19200.  Typically, if I shut down Kermit
  30. : and restart, it comes up with a normal ASCII character set.
  31. : When I SHOW TERM, the terminal character-set is listed as Latin1
  32. : whether I get Greek or Roman characters.  I have no recollection
  33. : of this happening in five years of using v3.10.  Any ideas on where 
  34. : this is coming from and/or what I can do to prevent it?
  35. First, let's rule out the possibility that somehow a different code
  36. page is being loaded.  In a session in which you are seeing Greek,
  37. what happens if you type "run chcp" at the MS-Kermit> prompt?
  38. I expect it will say that your code page is 437, which does include
  39. some Greek characters.
  40.  
  41. Second, what about your PARITY and TERMINAL BYTESIZE settings?  For
  42. using RSTS/E, I expect they should be NONE and 7, respectively (I don't
  43. remember RSTS that well -- maybe it needs EVEN parity).
  44.  
  45. So if your code page is 437 and your communications are 7-bit, you should
  46. not see any Greek.  If you are, my next guess would be that somebody is
  47. playing an elaborate trick on you.  Because if your TERMINAL CHARACTER-SET
  48. is LATIN1, there is no way you would ever see a Greek character on your
  49. screen, except lowercase mu, which is the only Greek character that is
  50. part of Latin Alphabet 1.  (But if your TERMINAL CHARACTER-SET is TRANSPARENT
  51. then you could see some Greek if your code page is 437.)
  52.  
  53. Such a trick could be accomplished by loading a nonstandard font that
  54. had Greek characters in the ASCII positions, or by using SET TRANSLATE
  55. INPUT commands in some file that MS-DOS Kermit is executing.
  56.  
  57. So after SET PORT COM4 and seeing Greek, escape back to the MS-Kermit>
  58. prompt and look carefully at what is reported by SHOW TERMINAL and SHOW
  59. COMMUNICATIONS.
  60.  
  61. - Frank